home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 5 / MacMania 5.toast / / Internet software / NewsWatcher / NW Source / Source / readme.c < prev    next >
Text File  |  1995-11-17  |  1KB  |  61 lines

  1. /*----------------------------------------------------------------------------
  2.  
  3.     This note describes how NewsWatcher's source code is organized.
  4.     
  5.     def.h
  6.     
  7.         Reusable constant and type definitions.
  8.     
  9.     glob.h and glob.c
  10.     
  11.         Global non-reusable constant, type, and variable definitions.
  12.     
  13.     newswatcher.c
  14.     
  15.         The main program, main event loop, high level event handlers,
  16.         initialization, and termination code.
  17.         
  18.     NewsWatcher.rsrc
  19.     
  20.         NewsWatcher's resources.
  21.         
  22.     balloons.r
  23.         
  24.         NewsWatcher's Balloon Help resources, compiled using 
  25.         Metrowerk's "Rez" compiler plugin.
  26.         
  27.     article.c
  28.     dialog.c
  29.     dummy.c
  30.     message.c
  31.     group.c
  32.     help.c
  33.     status.c
  34.     subject.c
  35.     text.c
  36.     
  37.         Window handling modules. The high level event handlers
  38.         in newswatcher.c dispatch events to these modules.
  39.         
  40.     about.c through wind.c
  41.     
  42.         Middle level modules. 
  43.         
  44.     ftp.c
  45.     nntp.c
  46.     smtp.c
  47.     net.c
  48.     
  49.         Reusable low-level TCP/IP modules. The net.c module is the
  50.         only one which talks directly to the network driver.
  51.         
  52.     dnr.c
  53.     
  54.         Apple's MacTCP DNR glue.
  55.         
  56.     apputil.c through windutil.c
  57.     
  58.         Reusable utility modules.
  59.     
  60. ----------------------------------------------------------------------------*/
  61.